home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Communications Toolbox / CTB Development Resources / Simple FT Tool / Simon Tool / Validation.h < prev   
Encoding:
C/C++ Source or Header  |  1992-05-11  |  1.5 KB  |  59 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.                             P R O J E C T   I N F O
  3. *******************************************************************************
  4.   
  5.     Project Name:    Simon
  6.        File Name:    Validation.h
  7.   
  8.      Description:    Header include for Validation.c
  9.   
  10.                           Copyright © 1992 Apple Computer, Inc.
  11.                           All rights reserved.
  12.   
  13. *******************************************************************************
  14.                           A U T H O R   I D E N T I T Y
  15. *******************************************************************************
  16.   
  17.       Initials    Name
  18.       --------    -----------------------------------------------
  19.       CH            Craig Hotchkiss
  20.   
  21. *******************************************************************************
  22.                           R E V I S I O N   H I S T O R Y
  23. *******************************************************************************
  24.  
  25.     Change History (most recent first):
  26.  
  27.          <0>      5/8/92    CH        Creation date
  28.  
  29. ******************************************************************************/
  30.  
  31.  
  32.  
  33. #ifndef __VALIDATION__
  34.     #define __VALIDATION__
  35.  
  36.  
  37.  
  38. #ifdef __cplusplus
  39.     extern "C" {
  40. #endif
  41.  
  42.  
  43.  
  44. /************************************************************************************
  45. *                                PROTOTYPEs
  46. ************************************************************************************/
  47. OSErr            DoToolDefault( Ptr* configPtr, Boolean allocateIt, short toolRefNum );
  48. OSErr            DoToolValidate( FTHandle toolHandle );
  49.  
  50.  
  51.  
  52. #ifdef __cplusplus
  53.     }
  54. #endif
  55.  
  56.  
  57.  
  58. #endif __VALIDATION__
  59.